home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 May / PCWMAY06.iso / Software / Freeware / First Page 2006 3.00 / fp2006-final-3.00-setup.exe / {app} / Iscripts / Forms Misc / trim-leading-spaces.izs < prev    next >
Text File  |  2005-09-28  |  1KB  |  60 lines

  1. <!NOWIZARD>
  2.  
  3. <!TITLE>Trim Leading Spaces
  4. <!/TITLE>
  5.  
  6. <!DESCRIPTION> A super-easy script which eliminates any extra leading spaces entered inside a textbox. To check it out in action, try entering a few spaces before the text in the box. <!/DESCRIPTION> 
  7.  
  8. <!CATEGORY>Forms<!/CATEGORY>
  9.  
  10. <!SCRIPT>
  11. <!-- START OF SCRIPT -->
  12.  
  13.  
  14. <!-- HOW TO INSTALL TRIM LEADING SPACES:
  15.  
  16.   1.  Copy code into the body section of document  -->
  17.  
  18. <!-- STEP ONE: Add this code into BODY section of document  -->
  19.  
  20. <BODY>
  21.  
  22.  
  23.  
  24. <center>
  25. <form>
  26. Filename:  <input type=text name=filename size=40 value="file.txt" onChange="javascript:while(''+this.value.charAt(0)==' ')this.value=this.value.substring(1,this.value.length);"><br>
  27. <input type=submit name=action value="Done!">
  28. </form>
  29. </center>
  30.  
  31.  
  32. <!-- END OF SCRIPT -->
  33. <!/SCRIPT>
  34.  
  35. <!PREVIEW>
  36. <!-- START OF SCRIPT -->
  37.  
  38. <!-- HOW TO INSTALL TRIM LEADING SPACES:
  39.  
  40.   1.  Copy code into the body section of document  -->
  41.  
  42. <!-- STEP ONE: Add this code into BODY section of document  -->
  43.  
  44. <BODY>
  45.  
  46.  
  47.  
  48. <center>
  49. <form>
  50. Filename:  <input type=text name=filename size=40 value="file.txt" onChange="javascript:while(''+this.value.charAt(0)==' ')this.value=this.value.substring(1,this.value.length);"><br>
  51. <input type=submit name=action value="Done!">
  52. </form>
  53. </center>
  54.  
  55.  
  56. <!-- END OF SCRIPT -->
  57. <!/PREVIEW>
  58.  
  59. <!RELATED>NONE<!/RELATED>
  60.